home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / iutil2.c < prev    next >
C/C++ Source or Header  |  1994-07-27  |  3KB  |  96 lines

  1. /* Copyright (C) 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* iutil2.c */
  20. /* Level 2 utilities for Ghostscript interpreter */
  21. #include "memory_.h"
  22. #include "string_.h"
  23. #include "ghost.h"
  24. #include "errors.h"
  25. #include "opcheck.h"
  26. #include "gsparam.h"
  27. #include "gsutil.h"        /* bytes_compare prototype */
  28. #include "imemory.h"        /* for iutil.h */
  29. #include "iutil.h"
  30. #include "iutil2.h"
  31.  
  32. /* ------ Password utilities ------ */
  33.  
  34. /* Read a password from a parameter list. */
  35. /* Return 0 if present, 1 if absent, or an error code. */
  36. int
  37. param_read_password(gs_param_list *plist, const char _ds *kstr, password *ppass)
  38. {    gs_param_string ps;
  39.     long ipass;
  40.     int code;
  41.     ps.data = (const byte *)ppass->data, ps.size = ppass->size,
  42.       ps.persistent = false;
  43.     code = param_read_string(plist, kstr, &ps);
  44.     switch ( code )
  45.     {
  46.     case 0:            /* OK */
  47.         if ( ps.size > max_password )
  48.           return_error(e_limitcheck);
  49.         /* Copy the data back. */
  50.         memcpy(ppass->data, ps.data, ps.size);
  51.         ppass->size = ps.size;
  52.         return 0;
  53.     case 1:            /* key is missing */
  54.         return 1;
  55.     }
  56.     /* We might have gotten a typecheck because */
  57.     /* the supplied password was an integer. */
  58.     if ( code != e_typecheck)
  59.       return code;
  60.     code = param_read_long(plist, kstr, &ipass);
  61.     if ( code != 0 )    /* error or missing */
  62.       return code;
  63.     sprintf((char *)ppass->data, "%ld", ipass);
  64.     ppass->size = strlen((char *)ppass->data);
  65.     return 0;
  66. }
  67. /* Write a password to a parameter list. */
  68. int
  69. param_write_password(gs_param_list *plist, const char _ds *kstr, const password *ppass)
  70. {    gs_param_string ps;
  71.     ps.data = (const byte *)ppass->data, ps.size = ppass->size,
  72.       ps.persistent = false;
  73.     if ( ps.size > max_password )
  74.       return_error(e_limitcheck);
  75.     return param_write_string(plist, kstr, &ps);
  76. }
  77.  
  78. /* Check a password from a parameter list. */
  79. /* Return 0 if OK, 1 if not OK, or an error code. */
  80. int
  81. param_check_password(gs_param_list *plist, const password *ppass)
  82. {    if ( ppass->size != 0 )
  83.     {    password pass;
  84.         int code = param_read_password(plist, "Password", &pass);
  85.         if ( code )
  86.           return code;
  87.         if ( pass.size != ppass->size ||
  88.              bytes_compare(&pass.data[0], pass.size,
  89.                    &ppass->data[0],
  90.                    ppass->size) != 0
  91.            )
  92.             return 1;
  93.     }
  94.     return 0;
  95. }
  96.